home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / patches / qw3r7.zip / QW3R7.BAT < prev    next >
DOS Batch File  |  1993-12-23  |  2KB  |  60 lines

  1. @echo off
  2.  
  3. REM     Check for Quicken in the current directory
  4. if exist QW.EXE goto PATCH
  5.  
  6. REM     Check that a directory was specified
  7. if (%1) == ()  goto NEEDDIR
  8.  
  9. REM     Check in the current directory of the specified drive
  10. REM     This also works if the direcory ends with a \
  11. if exist %1QW.EXE goto DRVONLY
  12.  
  13. REM     Check for Quicken in the specified directory
  14. if exist %1\QW.EXE goto PATCH
  15.  
  16. goto NOTFOUND
  17.  
  18.  
  19. REM     Apply the Patch file to Quicken.  It will 
  20. REM     automatically detect the current version of Quicken
  21. :PATCH
  22. patch  %1 qw3r7.rtp
  23. goto EXIT
  24. :DRVONLY
  25. patch  %1. qw3r7.rtp
  26. goto EXIT
  27.  
  28.  
  29. :NEEDDIR
  30. echo --------------------------------------------------------
  31. echo - Please include the name of the directory that contains
  32. echo - Quicken 3 for Windows.  For example, you should type:
  33. echo - 
  34. echo -     QW3R7 C:\QUICKENW
  35. echo - 
  36. echo - For more information, TYPE the README file.
  37. echo --------------------------------------------------------
  38. goto EXIT
  39.  
  40. :NOTFOUND
  41. echo --------------------------------------------------------
  42. echo - Quicken 3 for Windows was not found in the directory:
  43. echo - 
  44. echo -     %1
  45. echo - 
  46. echo - Please check that you are correctly typing the name
  47. echo - of the directory in which you installed Quicken.
  48. echo - For example, you should type:
  49. echo - 
  50. echo -     QW3R7 C:\QUICKENW
  51. echo - 
  52. echo - For more information, TYPE the README file.
  53. echo --------------------------------------------------------
  54. goto EXIT
  55.  
  56.  
  57. :EXIT
  58.  
  59.  
  60.